22209a92c7755069f114e7c60bd789bd7304e012,javasrc/src/org/ccnx/ccn/impl/sync/ProtocolBasedSyncMonitor.java,ProtocolBasedSyncMonitor,handleContent,#ContentObject#Interest#,220

Before Change


				Log.info(Log.FAC_SYNC, "Received incorrect content in sync: {0}", name);
			return null;
		}
		if (Log.isLoggable(Log.FAC_SYNC, Level.FINE))
			Log.fine(Log.FAC_SYNC, "Saw new content from sync: {0}", name);
		ContentName topo = name.cut(Sync.SYNC_ROOT_ADVISE_MARKER.getBytes());
		byte[] hash = name.component(hashComponent + 1);

After Change


				Log.info(Log.FAC_SYNC, "Received incorrect content in sync: {0}", name);
			return null;
		}
		Log.info(Log.FAC_SYNC, "Saw new content from sync: {0}", name);
		ContentName topo = name.cut(Sync.SYNC_ROOT_ADVISE_MARKER.getBytes());
		byte[] hash = name.component(hashComponent + 1);
		SliceReferences sr = getReferencesBySliceHash(topo, hash);